html php pass data to another page

50

html php pass data to another page -

//On page 1
$_SESSION['varname'] = $var_value;

//On page 2
$var_value = $_SESSION['varname'];

Comments

Submit
0 Comments